“PEN America’s Index of School Book Bans lists instances where students’ access to books in school libraries and classrooms in the United States was restricted or diminished for either limited or indefinite periods of time, from July 1, 2021 through June 30, 2022. Some of these bans have since been rescinded and some remain in place.”
“PEN America analyzed all relevant news stories on challenges, restrictions, and bans to school library books, curriculum, and classroom libraries anywhere in the United States during the 2021-22 school year. We consulted school district websites, corresponded with librarians, authors, and teachers, and reviewed letters to school districts organized by the National Coalition Against Censorship (NCAC).”
I got my data from here
bookban <- readr::read_csv("data/bookban.csv")
glimpse(bookban)Rows: 2,532
Columns: 10
$ state <chr> "Alaska", "Arkansas", "Florida", "Florida", …
$ district <chr> "Anchorage School District", "Siloam Springs…
$ origin_of_challenge <chr> "Administrator", "Formal Challenge", "Admini…
$ date_of_challenge_removal <dttm> 2021-10-01, 2022-01-01, 2022-05-01, 2022-03…
$ type_of_ban <chr> "Banned in Libraries and Classrooms", "Banne…
$ author <chr> "Kobabe, Maia", "Kuklin, Susan", "Maas, Sara…
$ title <chr> "Gender Queer: A Memoir", "Beyond Magenta: T…
$ secondary_author_s <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
$ illustrator_s <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
$ translator_s <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
tot_bans_state <- bookban %>%
group_by(state, date_of_challenge_removal) %>%
summarize(total = n()) %>%
ungroup() %>%
mutate(year = lubridate::year(date_of_challenge_removal))
glimpse(tot_bans_state)Rows: 128
Columns: 4
$ state <chr> "Alaska", "Arkansas", "Florida", "Florida", …
$ date_of_challenge_removal <dttm> 2021-10-01, 2022-01-01, 2021-09-01, 2021-10…
$ total <int> 1, 1, 1, 4, 173, 9, 203, 3, 38, 89, 40, 6, 1…
$ year <dbl> 2021, 2022, 2021, 2021, 2021, 2021, 2022, 20…
We have calculated the total number of book ban removal challenges per state and date, then displayed them by year. There were 32 different states in the dataset with a total of 138 school districts.
These are the most common values for the categorical variables. The categories of authors, translators and illustrators and book titles have all been removed due to missing information and to enhance data clarity. The light blue portion under orgin_of_challenge represents formal challenges, raised by parents, teachers or advocate groups. The last data portion of type_of_ban represents bans in both libraries and classrooms.
Commentary: Here we have the number of books banned or pending investigation by state. Many states shown have anywhere between one and less than ten books that have been banned/ are pending bans. States like Texas (801 bans), Florida (566 bans), Pennsylvania (457 bans) and Tennessee (349 bans) are leading the nation in banned books as a result of recent laws that have been passed. Examples include Florida’s ‘Don’t Say Gay’ law and other laws the prevent critical thought or scrutinize parts of American Culture and history, often deemed “offensive”. Texas developed similar practices when the updated the standards for Texas Education Agency. The large number of books banned in Pennsylvania is primarily the result of a single school district, Central York School District, due to the Board of the District’s decision to do so.